home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / winqwk13.arc / UC3SCR2.TXT < prev    next >
Text File  |  1991-10-28  |  2KB  |  58 lines

  1.  
  2.  
  3. From Packet: HOPPER
  4. Message # 24192                                  Area :  19  MSWindow
  5. From : Ted Johnson                               10-18-91  06:02
  6. To   : Steve Perry              
  7. Subj : UNICOM 3.0 , Help?       
  8. ------------------------------------------------------------------------------
  9. SP>1. When I download from my local BBS, Qmail4 Door, the new packet
  10. SP>overwrites the old. I have attempted to configure the Zmodem setup to
  11. SP>protect the old file but the program reverts to its original setting.
  12.  
  13. Steve,
  14. Have you saved your configuration settings from the configuration menu?
  15. If not, try that (I don't use that feature myself since I prefer to
  16. over-write).
  17.  
  18. SP>2. I have written a script (see below) that signs on, downloads and then
  19. SP>hangs. I want it to continue after download; to upload my repli (if any
  20. SP>exist on my hard drive) and then hang-up and close Unicom.
  21.  
  22. While I do it in the reverse order from you, here is my subroutine that
  23. checks for .rep files and uploads if one exists, then downloads a new
  24. packet.  FWIW, this routine assumes you have automatic downloads enabled
  25. and are a registered user (I think some of these commands may only be
  26. available to registered users though I may be thinking of some more
  27. complex scripts that I use).
  28.  
  29. :Program
  30. Send "Open 1 ^M"
  31. Waitfor "Command?" 60
  32. FindFile "d:\deluxe\cheers.rep"
  33. IF Found
  34.         Send "U^M"
  35.         Waitfor "Zmodem"
  36.         Sendfile ZMODEM "D:\deluxe\cheers.rep"
  37.  Waitfor "continue" 60
  38.  Send "^M"
  39.         Waitfor "Command?" 3
  40. ENDIF
  41. Send "D^M"
  42. Waitfor "these messages" 90
  43. Send "G^M"
  44.  
  45. exit
  46.  
  47. I hope this helps.
  48.                                 Regards,
  49.                                         <<TED>>
  50.                 Message created at 06:02:17 Fri  10-18-1991
  51. ---
  52.  ■ DeLuxe² 1.12 #726 · ¡#^@ I lack in intelligence I make up in stupidity
  53.  ■ ILink: Cheers ∙∙ Memphis, TN ∙∙ 901-373-5941 HST/V.32
  54.                                                                                  
  55.  
  56. ******************************************************************************
  57.  
  58.